]>
Commit | Line | Data |
---|---|---|
f0cc3e7b | 1 | /* |
1a175162 | 2 | * |
f0cc3e7b | 3 | * Copyright (c) 2017 Apple Inc. All rights reserved. |
1a175162 A |
4 | * |
5 | * Licensed under the Apache License, Version 2.0 (the "License"); | |
6 | * you may not use this file except in compliance with the License. | |
7 | * You may obtain a copy of the License at | |
f0cc3e7b | 8 | * |
1a175162 | 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
f0cc3e7b | 10 | * |
1a175162 A |
11 | * Unless required by applicable law or agreed to in writing, software |
12 | * distributed under the License is distributed on an "AS IS" BASIS, | |
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
14 | * See the License for the specific language governing permissions and | |
15 | * limitations under the License. | |
1a175162 A |
16 | */ |
17 | ||
f0cc3e7b A |
18 | #import "AppDelegate.h" |
19 | ||
20 | @interface AppDelegate () | |
1a175162 | 21 | |
f0cc3e7b | 22 | @end |
1a175162 | 23 | |
f0cc3e7b | 24 | @implementation AppDelegate |
1a175162 | 25 | |
f0cc3e7b A |
26 | - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { |
27 | // Insert code here to initialize your application | |
28 | (void)aNotification; // Unused | |
29 | } | |
1a175162 | 30 | |
1a175162 | 31 | |
f0cc3e7b A |
32 | - (void)applicationWillTerminate:(NSNotification *)aNotification { |
33 | // Insert code here to tear down your application | |
34 | (void)aNotification; // Unused | |
35 | } | |
1a175162 | 36 | |
1a175162 | 37 | |
f0cc3e7b | 38 | @end |